projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bfb66e
)
(Fprevious_char): Use PT, not point.
author
Karl Heuer
<kwzh@gnu.org>
Sat, 14 Jun 1997 04:51:21 +0000
(
04:51
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Sat, 14 Jun 1997 04:51:21 +0000
(
04:51
+0000)
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index ad331e9623b6dfc6a00af11d71b65b0cb6428bf2..0661d0f8c8658bf41616b524c3b1818ef57c5a56 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-517,7
+517,7
@@
If `enable-multibyte-characters' is nil or point is not\n\
XSETFASTINT (temp, FETCH_CHAR (pos));
}
else
- XSETFASTINT (temp, FETCH_BYTE (
point
- 1));
+ XSETFASTINT (temp, FETCH_BYTE (
PT
- 1));
return temp;
}